home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AppsToGo / DTS.StyleChat / •Changes (since 4.0b1) next >
Encoding:
Text File  |  1994-09-22  |  1.2 KB  |  27 lines  |  [TEXT/MPS ]

  1. 07/27/93 (ERS)
  2.  
  3. __________
  4.  
  5. DTS.StyleChat has been given a face-lift.  It now has 3D buttons for connecting/sending,
  6. instead of the Communicate menu.  (Lots better.)
  7.  
  8. __________
  9.  
  10. DTS.StyleChat was still creating the TextEdit controls for the inbox and outbox
  11. with direct calls to CTENew().  This has been changed to be AppsToGo-editor-compliant.
  12. The controls are now edited in AppsToGo, and they are created when AddControlSet()
  13. is called in the InitContent() procedure.  Since the window can be resized at runtime,
  14. ResizeContent() can't get simpler.  This actually works out nicely, though.  By calling
  15. ResizeContent() from InitContent(), the inbox/outbox controls only have to exist.
  16. They get resized correctly by ResizeContent().  This means that the window size can
  17. be changed and kept with the document, yet we can still create the inbox/outbox controls
  18. in the AppsToGo editor at a fixed size.
  19.  
  20. __________
  21.  
  22. The Kibitz feature of a document remembering what remote application is was connected to
  23. and launching that remote application when the document is opened has been added to
  24. DTS.StyleChat.  I suspect that this may turn out to be a popular feature, so I've added
  25. support for this in DTS.Lib.  (A good portion of the autl-launch code is in AEConnect.c)
  26.  
  27.